Serde YAML
This crate is a Rust library for using the Serde serialization framework with data in YAML file format. This library does not reimplement a YAML parser; it uses yaml-rust which is a pure Rust YAML 1.2 implementation.
Dependency
[]
= "1.0"
= "0.7"
Release notes are available under GitHub releases.
Using Serde YAML
API documentation is available in rustdoc form but the general idea is:
extern crate serde_yaml;
use BTreeMap;
It can also be used with Serde's serialization code generator serde_derive
to
handle structs and enums defined in your own program.
[]
= "1.0"
= "1.0"
= "0.7"
extern crate serde_derive;
extern crate serde_yaml;
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Serde YAML by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.